{% extends 'base.html' %} {% block content %}

Tasks

New Task
Reset
{% if tasks %}
{% for task in tasks %} {% endfor %}
Title Status Priority Due Date Assigned To Actions
{{ task.title|truncatechars:50 }} {% if task.due_date and task.is_overdue %} Overdue {% endif %} {{ task.get_status_display }} {{ task.get_priority_display }} {% if task.due_date %} {{ task.due_date|date:"M d, Y" }} {% else %} No due date {% endif %} {% if task.assigned_to %} {{ task.assigned_to.get_full_name|default:task.assigned_to.username }} {% else %} Unassigned {% endif %}
{% if user == task.created_by or user == task.assigned_to or user.is_staff %} {% endif %} {% if user == task.created_by or user.is_staff %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No tasks found. Create a new task to get started.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}